home *** CD-ROM | disk | FTP | other *** search
- global gMAsound
-
- on enterFrame
- global gMALev, gMAcurrAth, gMAlowLetterSprite, gMAathStr
- puppetSprite(41, 0)
- set the visible of sprite 41 to 1
- set the visible of sprite 42 to 1
- set the visible of sprite 43 to 1
- updateStage()
- end
-
- on exitFrame
- global gMALev, gMAcurrAth, gMAlowLetterSprite
- if gMALev > 1 then
- clearBoard(0)
- repeat with X = 1 to length(gMAcurrAth)
- set vChar to char X of gMAcurrAth
- set vSprite to X + gMAlowLetterSprite - 1
- if vChar <> " " then
- puppetSprite(vSprite, 1)
- set the castNum of sprite vSprite to cast vChar
- set the loc of sprite vSprite to point(5 + (X * 33), 464)
- if gMAsound then
- puppetSound("pong.aif")
- updateStage()
- end if
- set vNewTime to the timer + 15
- repeat while the timer < vNewTime
- nothing()
- end repeat
- end if
- end repeat
- end if
- puppetSprite(41, 0)
- set the visible of sprite 41 to 1
- set the visible of sprite 42 to 1
- set the visible of sprite 43 to 1
- updateStage()
- go(#next)
- end
-